home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1996 / MacHack 1996.toast / Presentations / Presentations ’92 / PatchWorks Kit / <PatchWorks++> / Exceptions.c < prev    next >
Text File  |  1992-05-30  |  423b  |  24 lines

  1. /*
  2.     Exceptions.c
  3.     
  4.     C++ style exception handling.
  5.     
  6.     Part of PatchWorks, the Extension Development Framework.
  7.     
  8.     by Mouse Herrell & Patrick Beard.
  9.     
  10.     Permission is granted to use this source code for any purpose, as long
  11.     as the copyright notice is maintained.
  12.     
  13.     © 1992 Berkeley Systems, Inc.
  14.  */
  15.  
  16. #include "Exceptions.h"
  17.  
  18. #ifndef __TYPES__
  19. #include <Types.h>
  20. #endif
  21.  
  22. int theException = 0;
  23. ExceptionFrame* theFrame = nil;
  24.